home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / TDE200.ARJ / HELP.H < prev    next >
Text File  |  1992-06-05  |  3KB  |  56 lines

  1. /*
  2.  * New editor name:  tde, the Thomson-Davis Editor.
  3.  * Author:           Frank Davis
  4.  * Date:             June 5, 1991
  5.  *
  6.  * This modification of Douglas Thomson's code is released into the
  7.  * public domain, Frank Davis.  You may distribute it freely.
  8.  *
  9.  * This info is displayed in the intro screen and the pop-up help screen
  10.  * when F1 is pressed.
  11.  */
  12.  
  13. char *credit_screen[] = {
  14. "┌────────────────────────────────────────────────────┐",
  15. "│                                                    │",
  16. "│            tde, the Thomson-Davis Editor           │",
  17. "│                    Version 2.0                     │",
  18. "│                    June 5, 1992                    │",
  19. "│                                                    │",
  20. "│      This program is released into the public      │",
  21. "│   domain.  You may use and distribute it freely.   │",
  22. "│                                                    │",
  23. "└────────────────────────────────────────────────────┘",
  24. NULL
  25. };
  26.  
  27.  
  28. char *help_screen[] = {
  29. "───── Word Processing ───────┬───── Block commands ─────┬──── File commands ────",
  30. "  ^F6 - set left margin      │ @B - mark box block      │@F1 - dir list         ",
  31. "  ^F7 - set right margin     │ @L - mark line block     │ F2  save   #F2 save as",
  32. "  ^F8 - set paragraph margin │ @X - mark stream block   │ F3 - quit             ",
  33. "  @F7 - format paragraph     │ @U - unmark block        │ F4 - file             ",
  34. "  ^B - format cursor forward │ @G - group delete block  │ @F2 - file attributes ",
  35. "  @F8 - left justify line    │ @M - move block          │ #F4 - edit new file   ",
  36. "  @F9 - right justify line   │ @C - copy block          ├─────── Toggles ───────",
  37. " @F10 - center justify line  │ @K - kopy block          │ ^F1 - cursor sync     ",
  38. "───── Window Commands ───────┤ @O - overlay box block   │ ^F2 - eol display     ",
  39. "  F8 vertical   F9 horizontal│ @F - fill box block      │ ^F3 - CRLF | LF at eol",
  40. " #F9 resize    ^F9 zoom      │ @N - number box block    │ ^F4 - trim trailing   ",
  41. " F10 next      #F10 previous │ @S - sort box block      │ ^F5 - search\\sort case",
  42. " ^F10 - next hidden window   │ @E - block expand tabs   │  @R - ruler           ",
  43. "─────── Misc commands ───────┤ @T - trim trailing space │  @V - word wrap       ",
  44. " @A add L        @D delete L │ @P - print file/block    │  @Z - ^Z at eof       ",
  45. " @J join L       ^_ split L  │ @W - write block to file │  @I - indent mode     ",
  46. " @= dup L        @- kill eol │ @< - block to upper case │@tab - smart tabs      ",
  47. "ESC undo L       ^U undelete │ @> - block to lower case ├───── Find/Replace ────",
  48. " ^\\ redraw       ^] paren bal│ @? - block strip hi bit  │ #F5 - find forward    ",
  49. " Enter  Emacs L     @Q Quit  ├───────── Macros ─────────┤ #F6 - find backward   ",
  50. "#Enter  next L      @H Help  │  @F3  record on/off      │  F5 - repeat forward  ",
  51. "^Enter  beg next L           │  #F1  save      #F3 load │  F6 - repeat backward ",
  52. "@1-@3 mark                   │   ^P  Pause              │ #F7 - replace forward ",
  53. "#@1-#@3 goto    ^2 Date stamp│ ^ESC  clear macros       │ #F8 - replace backward",
  54. NULL
  55. };
  56.